home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / Perl / macscripts / find2perl < prev    next >
Text File  |  1993-10-23  |  12KB  |  572 lines

  1. Perl -Sx "{0}" {"Parameters"}
  2. Exit
  3.  
  4. #!/usr/local/bin/perl
  5.  
  6. $bin = "/usr/local/bin";
  7.  
  8. while ($ARGV[0] =~ /^[^-!(]/) {
  9.     push(@roots, shift);
  10. }
  11. @roots = (':') unless @roots;
  12. for (@roots) { unless (/:/) { $_ = ":" . $_; } $_ = "e($_); }
  13. $roots = join(',', @roots);
  14.  
  15. $indent = 1;
  16.  
  17. while (@ARGV) {
  18.     $_ = shift;
  19.     s/^-// || /^[()!]/ || die "Unrecognized switch: $_\n";
  20.     if ($_ eq '(') {
  21.     $out .= &tab . "(\n";
  22.     $indent++;
  23.     next;
  24.     }
  25.     elsif ($_ eq ')') {
  26.     $indent--;
  27.     $out .= &tab . ")";
  28.     }
  29.     elsif ($_ eq '!') {
  30.     $out .= &tab . "!";
  31.     next;
  32.     }
  33.     elsif ($_ eq 'name') {
  34.     $out .= &tab;
  35.     $pat = &fileglob_to_re(shift);
  36.     $out .= '/' . $pat . "/";
  37.     }
  38.     elsif ($_ eq 'perm') {
  39.     $onum = shift;
  40.     die "Malformed -perm argument: $onum\n" unless $onum =~ /^-?[0-7]+$/;
  41.     if ($onum =~ s/^-//) {
  42.         $onum = '0' . sprintf("%o", oct($onum) & 017777);    # s/b 07777 ?
  43.         $out .= &tab . "((\$mode & $onum) == $onum)";
  44.     }
  45.     else {
  46.         $onum = '0' . $onum unless $onum =~ /^0/;
  47.         $out .= &tab . "((\$mode & 0777) == $onum)";
  48.     }
  49.     }
  50.     elsif ($_ eq 'type') {
  51.     ($filetest = shift) =~ tr/s/S/;
  52.     $out .= &tab . "-$filetest _";
  53.     }
  54.     elsif ($_ eq 'print') {
  55.     $out .= &tab . 'print("$name\n")';
  56.     }
  57.     elsif ($_ eq 'print0') {
  58.     $out .= &tab . 'print("$name\0")';
  59.     }
  60.     elsif ($_ eq 'fstype') {
  61.     $out .= &tab;
  62.     $type = shift;
  63.     if ($type eq 'nfs')
  64.         { $out .= '$dev < 0'; }
  65.     else
  66.         { $out .= '$dev >= 0'; }
  67.     }
  68.     elsif ($_ eq 'user') {
  69.     $uname = shift;
  70.     $out .= &tab . "\$uid == \$uid{'$uname'}";
  71.     $inituser++;
  72.     }
  73.     elsif ($_ eq 'group') {
  74.     $gname = shift;
  75.     $out .= &tab . "\$gid == \$gid{'$gname'}";
  76.     $initgroup++;
  77.     }
  78.     elsif ($_ eq 'nouser') {
  79.     $out .= &tab . '!defined $uid{$uid}';
  80.     $inituser++;
  81.     }
  82.     elsif ($_ eq 'nogroup') {
  83.     $out .= &tab . '!defined $gid{$gid}';
  84.     $initgroup++;
  85.     }
  86.     elsif ($_ eq 'links') {
  87.     $out .= &tab . '$nlink ' . &n(shift);
  88.     }
  89.     elsif ($_ eq 'inum') {
  90.     $out .= &tab . '$ino ' . &n(shift);
  91.     }
  92.     elsif ($_ eq 'size') {
  93.     $out .= &tab . 'int((-s _ + 511) / 512) ' . &n(shift);
  94.     }
  95.     elsif ($_ eq 'atime') {
  96.     $out .= &tab . 'int(-A _) ' . &n(shift);
  97.     }
  98.     elsif ($_ eq 'mtime') {
  99.     $out .= &tab . 'int(-M _) ' . &n(shift);
  100.     }
  101.     elsif ($_ eq 'ctime') {
  102.     $out .= &tab . 'int(-C _) ' . &n(shift);
  103.     }
  104.     elsif ($_ eq 'exec') {
  105.     for (@cmd = (); @ARGV && $ARGV[0] ne ';'; push(@cmd,shift)) { }
  106.     shift;
  107.     $_ = "@cmd";
  108.     if (m#^(/bin/)?rm -f {}$#) {
  109.         if (!@ARGV) {
  110.         $out .= &tab . 'unlink($_)';
  111.         }
  112.         else {
  113.         $out .= &tab . '(unlink($_) || 1)';
  114.         }
  115.     }
  116.     elsif (m#^(/bin/)?rm {}$#) {
  117.         $out .= &tab . '(unlink($_) || warn "$name: $!\n")';
  118.     }
  119.     else {
  120.         for (@cmd) { s/'/\\'/g; }
  121.         $" = "','";
  122.         $out .= &tab . "&exec(0, '@cmd')";
  123.         $" = ' ';
  124.         $initexec++;
  125.     }
  126.     }
  127.     elsif ($_ eq 'ok') {
  128.     for (@cmd = (); @ARGV && $ARGV[0] ne ';'; push(@cmd,shift)) { }
  129.     shift;
  130.     for (@cmd) { s/'/\\'/g; }
  131.     $" = "','";
  132.     $out .= &tab . "&exec(1, '@cmd')";
  133.     $" = ' ';
  134.     $initexec++;
  135.     }
  136.     elsif ($_ eq 'prune') {
  137.     $out .= &tab . '($prune = 1)';
  138.     }
  139.     elsif ($_ eq 'xdev') {
  140.     $out .= &tab . '(($prune |= ($dev != $topdev)),1)';
  141.     }
  142.     elsif ($_ eq 'newer') {
  143.     $out .= &tab;
  144.     $file = shift;
  145.     $newername = 'AGE_OF' . $file;
  146.     $newername =~ s/[^\w]/_/g;
  147.     $newername = '$' . $newername;
  148.     $out .= "-M _ < $newername";
  149.     $initnewer .= "$newername = -M " . "e($file) . ";\n";
  150.     }
  151.     elsif ($_ eq 'eval') {
  152.     $prog = "e(shift);
  153.     $out .= &tab . "eval $prog";
  154.     }
  155.     elsif ($_ eq 'depth') {
  156.     $depth++;
  157.     next;
  158.     }
  159.     elsif ($_ eq 'ls') {
  160.     $out .= &tab . "&ls";
  161.     $initls++;
  162.     }
  163.     elsif ($_ eq 'tar') {
  164.     $out .= &tab;
  165.     die "-tar must have a filename argument\n" unless @ARGV;
  166.     $file = shift;
  167.     $fh = 'FH' . $file;
  168.     $fh =~ s/[^\w]/_/g;
  169.     $out .= "&tar($fh)";
  170.     $file = '>' . $file;
  171.     $initfile .= "open($fh, " . "e($file) .
  172.       qq{) || die "Can't open $fh: \$!\\n";\n};
  173.     $inittar++;
  174.     $flushall = "\n&tflushall;\n";
  175.     }
  176.     elsif (/^n?cpio$/) {
  177.     $depth++;
  178.     $out .= &tab;
  179.     die "-$_ must have a filename argument\n" unless @ARGV;
  180.     $file = shift;
  181.     $fh = 'FH' . $file;
  182.     $fh =~ s/[^\w]/_/g;
  183.     $out .= "&cpio('" . substr($_,0,1) . "', $fh)";
  184.     $file = '>' . $file;
  185.     $initfile .= "open($fh, " . "e($file) .
  186.       qq{) || die "Can't open $fh: \$!\\n";\n};
  187.     $initcpio++;
  188.     $flushall = "\n&flushall;\n";
  189.     }
  190.     else {
  191.     die "Unrecognized switch: -$_\n";
  192.     }
  193.     if (@ARGV) {
  194.     if ($ARGV[0] eq '-o') {
  195.         { local($statdone) = 1; $out .= "\n" . &tab . "||\n"; }
  196.         $statdone = 0 if $indent == 1 && $delayedstat;
  197.         $saw_or++;
  198.         shift;
  199.     }
  200.     else {
  201.         $out .= " &&" unless $ARGV[0] eq ')';
  202.         $out .= "\n";
  203.         shift if $ARGV[0] eq '-a';
  204.     }
  205.     }
  206. }
  207.  
  208. print <<"END";
  209. # Macintosh MPW shell startup hack
  210. Perl -Sx "{0}" {"Parameters"}
  211. Exit
  212.   
  213. #!$bin/perl
  214.  
  215. END
  216.  
  217. if ($initls) {
  218.     print <<'END';
  219. @rwx = ('---','--x','-w-','-wx','r--','r-x','rw-','rwx');
  220. @moname = (Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec);
  221.  
  222. END
  223. }
  224.  
  225. # The Mac can't handle this
  226. #
  227. # if ($inituser || $initls) {
  228. #     print 'while (($name, $pw, $uid) = getpwent) {', "\n";
  229. #     print '    $uid{$name} = $uid{$uid} = $uid;', "\n" if $inituser;
  230. #     print '    $user{$uid} = $name unless $user{$uid};', "\n" if $initls;
  231. #     print "}\n\n";
  232. # }
  233. # if ($initgroup || $initls) {
  234. #     print 'while (($name, $pw, $gid) = getgrent) {', "\n";
  235. #     print '    $gid{$name} = $gid{$gid} = $gid;', "\n" if $initgroup;
  236. #     print '    $group{$gid} = $name unless $group{$gid};', "\n" if $initls;
  237. #     print "}\n\n";
  238. # }
  239.  
  240. print $initnewer, "\n" if $initnewer;
  241.  
  242. print $initfile, "\n" if $initfile;
  243.  
  244. $find = $depth ? "finddepth" : "find";
  245. print <<"END";
  246. require "$find.pl";
  247.  
  248. # Traverse desired filesystems
  249.  
  250. &$find($roots);
  251. $flushall
  252. exit;
  253.  
  254. sub wanted {
  255. $out;
  256. }
  257.  
  258. END
  259.  
  260. if ($initexec) {
  261.     print <<'END';
  262. sub exec {
  263.     local($ok, @cmd) = @_;
  264.     foreach $word (@cmd) {
  265.     $word =~ s#{}#$name#g;
  266.     }
  267.     if ($ok) {
  268.     local($old) = select(STDOUT);
  269.     $| = 1;
  270.     print "@cmd";
  271.     select($old);
  272.     return 0 unless <STDIN> =~ /^y/;
  273.     }
  274.     chdir $cwd;        # sigh
  275.     system @cmd;
  276.     chdir $dir;
  277.     return !$?;
  278. }
  279.  
  280. END
  281. }
  282.  
  283. if ($initls) {
  284.     print <<'END';
  285. sub ls {
  286.     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$sizemm,
  287.       $atime,$mtime,$ctime,$blksize,$blocks) = lstat(_);
  288.  
  289.     $pname = $name;
  290.  
  291.     if (defined $blocks) {
  292.     $blocks = int(($blocks + 1) / 2);
  293.     }
  294.     else {
  295.     $blocks = int(($size + 1023) / 1024);
  296.     }
  297.  
  298.     if    (-f _) { $perms = '-'; }
  299.     elsif (-d _) { $perms = 'd'; }
  300.     elsif (-c _) { $perms = 'c'; $sizemm = &sizemm; }
  301.     elsif (-b _) { $perms = 'b'; $sizemm = &sizemm; }
  302.     elsif (-p _) { $perms = 'p'; }
  303.     elsif (-S _) { $perms = 's'; }
  304.     else         { $perms = 'l'; $pname .= ' -> ' . readlink($_); }
  305.  
  306.     $tmpmode = $mode;
  307.     $tmp = $rwx[$tmpmode & 7];
  308.     $tmpmode >>= 3;
  309.     $tmp = $rwx[$tmpmode & 7] . $tmp;
  310.     $tmpmode >>= 3;
  311.     $tmp = $rwx[$tmpmode & 7] . $tmp;
  312.     substr($tmp,2,1) =~ tr/-x/Ss/ if -u _;
  313.     substr($tmp,5,1) =~ tr/-x/Ss/ if -g _;
  314.     substr($tmp,8,1) =~ tr/-x/Tt/ if -k _;
  315.     $perms .= $tmp;
  316.  
  317. #    $user = $user{$uid} || $uid;
  318. #    $group = $group{$gid} || $gid;
  319.  
  320.     ($sec,$min,$hour,$mday,$mon,$year) = localtime($mtime);
  321.     $moname = $moname[$mon];
  322.     if (-M _ > 365.25 / 2) {
  323.     $timeyear = '19' . $year;
  324.     }
  325.     else {
  326.     $timeyear = sprintf("%02d:%02d", $hour, $min);
  327.     }
  328.  
  329. #    printf "%5lu %4ld %-10s %2d %-8s %-8s %8s %s %2d %5s %s\n",
  330. #    printf "%5lu %4ld %-10s %2d %8s %s %2d %5s %s\n",
  331.         $ino,
  332.          $blocks,
  333.               $perms,
  334.                 $nlink,
  335. #                $user,
  336. #                     $group,
  337.                       $sizemm,
  338.                           $moname,
  339.                          $mday,
  340.                              $timeyear,
  341.                              $pname;
  342.     1;
  343. }
  344.  
  345. sub sizemm {
  346.     sprintf("%3d, %3d", ($rdev >> 8) & 255, $rdev & 255);
  347. }
  348.  
  349. END
  350. }
  351.  
  352. if ($initcpio) {
  353. print <<'END';
  354. sub cpio {
  355.     local($nc,$fh) = @_;
  356.     local($text);
  357.  
  358.     if ($name eq 'TRAILER!!!') {
  359.     $text = '';
  360.     $size = 0;
  361.     }
  362.     else {
  363.     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  364.       $atime,$mtime,$ctime,$blksize,$blocks) = lstat(_);
  365.     if (-f _) {
  366.         open(IN, "./$_\0") || do {
  367.         warn "Couldn't open $name: $!\n";
  368.         return;
  369.         };
  370.     }
  371.     else {
  372.         $text = readlink($_);
  373.         $size = 0 unless defined $text;
  374.     }
  375.     }
  376.  
  377.     ($nm = $name) =~ s#^\./##;
  378.     $nc{$fh} = $nc;
  379.     if ($nc eq 'n') {
  380.     $cpout{$fh} .=
  381.       sprintf("%06o%06o%06o%06o%06o%06o%06o%06o%011lo%06o%011lo%s\0",
  382.         070707,
  383.         $dev & 0777777,
  384.         $ino & 0777777,
  385.         $mode & 0777777,
  386.         $uid & 0777777,
  387.         $gid & 0777777,
  388.         $nlink & 0777777,
  389.         $rdev & 0177777,
  390.         $mtime,
  391.         length($nm)+1,
  392.         $size,
  393.         $nm);
  394.     }
  395.     else {
  396.     $cpout{$fh} .= "\0" if length($cpout{$fh}) & 1;
  397.     $cpout{$fh} .= pack("SSSSSSSSLSLa*",
  398.         070707, $dev, $ino, $mode, $uid, $gid, $nlink, $rdev, $mtime,
  399.         length($nm)+1, $size, $nm . (length($nm) & 1 ? "\0" : "\0\0"));
  400.     }
  401.     if ($text ne '') {
  402.     $cpout{$fh} .= $text;
  403.     }
  404.     elsif ($size) {
  405.     &flush($fh) while ($l = length($cpout{$fh})) >= 5120;
  406.     while (sysread(IN, $cpout{$fh}, 5120 - $l, $l)) {
  407.         &flush($fh);
  408.         $l = length($cpout{$fh});
  409.     }
  410.     }
  411.     close IN;
  412. }
  413.  
  414. sub flush {
  415.     local($fh) = @_;
  416.  
  417.     while (length($cpout{$fh}) >= 5120) {
  418.     syswrite($fh,$cpout{$fh},5120);
  419.     ++$blocks{$fh};
  420.     substr($cpout{$fh}, 0, 5120) = '';
  421.     }
  422. }
  423.  
  424. sub flushall {
  425.     $name = 'TRAILER!!!';
  426.     foreach $fh (keys %cpout) {
  427.     &cpio($nc{$fh},$fh);
  428.     $cpout{$fh} .= "0" x (5120 - length($cpout{$fh}));
  429.     &flush($fh);
  430.     print $blocks{$fh} * 10, " blocks\n";
  431.     }
  432. }
  433.  
  434. END
  435. }
  436.  
  437. if ($inittar) {
  438. print <<'END';
  439. sub tar {
  440.     local($fh) = @_;
  441.     local($linkname,$header,$l,$slop);
  442.     local($linkflag) = "\0";
  443.  
  444.     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  445.       $atime,$mtime,$ctime,$blksize,$blocks) = lstat(_);
  446.     $nm = $name;
  447.     if ($nlink > 1) {
  448.     if ($linkname = $linkseen{$fh,$dev,$ino}) {
  449.         $linkflag = 1;
  450.     }
  451.     else {
  452.         $linkseen{$fh,$dev,$ino} = $nm;
  453.     }
  454.     }
  455.     if (-f _) {
  456.     open(IN, "./$_\0") || do {
  457.         warn "Couldn't open $name: $!\n";
  458.         return;
  459.     };
  460.     $size = 0 if $linkflag ne "\0";
  461.     }
  462.     else {
  463.     $linkname = readlink($_);
  464.     $linkflag = 2 if defined $linkname;
  465.     $nm .= '/' if -d _;
  466.     $size = 0;
  467.     }
  468.  
  469.     $header = pack("a100a8a8a8a12a12a8a1a100",
  470.     $nm,
  471.     sprintf("%6o ", $mode & 0777),
  472.     sprintf("%6o ", $uid & 0777777),
  473.     sprintf("%6o ", $gid & 0777777),
  474.     sprintf("%11o ", $size),
  475.     sprintf("%11o ", $mtime),
  476.     "        ",
  477.     $linkflag,
  478.     $linkname);
  479.     $l = length($header) % 512;
  480.     substr($header, 148, 6) = sprintf("%6o", unpack("%16C*", $header));
  481.     substr($header, 154, 1) = "\0";  # blech
  482.     $tarout{$fh} .= $header;
  483.     $tarout{$fh} .= "\0" x (512 - $l) if $l;
  484.     if ($size) {
  485.     &tflush($fh) while ($l = length($tarout{$fh})) >= 10240;
  486.     while (sysread(IN, $tarout{$fh}, 10240 - $l, $l)) {
  487.         $slop = length($tarout{$fh}) % 512;
  488.         $tarout{$fh} .= "\0" x (512 - $slop) if $slop;
  489.         &tflush($fh);
  490.         $l = length($tarout{$fh});
  491.     }
  492.     }
  493.     close IN;
  494. }
  495.  
  496. sub tflush {
  497.     local($fh) = @_;
  498.  
  499.     while (length($tarout{$fh}) >= 10240) {
  500.     syswrite($fh,$tarout{$fh},10240);
  501.     ++$blocks{$fh};
  502.     substr($tarout{$fh}, 0, 10240) = '';
  503.     }
  504. }
  505.  
  506. sub tflushall {
  507.     local($len);
  508.  
  509.     foreach $fh (keys %tarout) {
  510.     $len = 10240 - length($tarout{$fh});
  511.     $len += 10240 if $len < 1024;
  512.     $tarout{$fh} .= "\0" x $len;
  513.     &tflush($fh);
  514.     }
  515. }
  516.  
  517. END
  518. }
  519.  
  520. exit;
  521.  
  522. ############################################################################
  523.  
  524. sub tab {
  525.     local($tabstring);
  526.  
  527.     $tabstring = "\t" x ($indent / 2) . ' ' x ($indent % 2 * 4);
  528.     if (!$statdone) {
  529.     if ($_ =~ /^(name|print|prune|exec|ok|\(|\))/) {
  530.         $delayedstat++;
  531.     }
  532.     else {
  533.         if ($saw_or) {
  534.         $tabstring .= <<'ENDOFSTAT' . $tabstring;
  535. ($nlink || (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_))) &&
  536. ENDOFSTAT
  537.         }
  538.         else {
  539.         $tabstring .= <<'ENDOFSTAT' . $tabstring;
  540. (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) &&
  541. ENDOFSTAT
  542.         }
  543.         $statdone = 1;
  544.     }
  545.     }
  546.     $tabstring =~ s/^\s+/ / if $out =~ /!$/;
  547.     $tabstring;
  548. }
  549.  
  550. sub fileglob_to_re {
  551.     local($tmp) = @_;
  552.  
  553.     $tmp =~ s/([.^\$()])/\\$1/g;
  554.     $tmp =~ s/([?*])/.$1/g;
  555.     "^$tmp$";
  556. }
  557.  
  558. sub n {
  559.     local($n) = @_;
  560.  
  561.     $n =~ s/^-/< / || $n =~ s/^\+/> / || $n =~ s/^/== /;
  562.     $n =~ s/ 0*(\d)/ $1/;
  563.     $n;
  564. }
  565.  
  566. sub quote {
  567.     local($string) = @_;
  568.     $string =~ s/'/\\'/;
  569.     "'$string'";
  570. }
  571.